home *** CD-ROM | disk | FTP | other *** search
/ PC Administrator / spravce.iso / RemoteKeys / Manual / English / Command Manual / STR.txt < prev    next >
Encoding:
Text File  |  2002-08-04  |  2.3 KB  |  90 lines

  1. Description of Keys & Commands
  2. ==============================
  3. English translation comming soon (I hope)
  4.  
  5.  
  6. Command-Group "STR": String variables
  7. =====================================
  8.  
  9. With the STR commands it is possible to work with variable text modules,
  10. for example by generating buttons with different STR definitions (SET).
  11. Later buttons with text documents which includes the CALL commands can
  12. be send with variable text modules.
  13.  
  14.  
  15. /STR.>.CLIP no ........: To copy variable STR <no> (1-10) into the clipboard
  16. /STR.<.CLIP no ........: To set the clipboard content (text only) to variable STR <no> (1-10)
  17. ------------------------
  18.  
  19. Examples:
  20. {/STR.>.CLIP 1}
  21. {/STR.<.CLIP 2}
  22.  
  23.  
  24. /STR.ASK no ...........: To set a string to variable STR <no>, defined during script is in process
  25. ------------------------
  26.  
  27. Example: {/STR.ASK 5}
  28.  
  29. --> Tip
  30. Wird der Dialog durch "Abbrechen" geschlossen, so kann die Skript-Abarbeitung
  31. an dieser Stelle durch den Commands "BTCH.EXIT-ON-CANCEL" (siehe dort) beendet
  32. werden.
  33.  
  34.  
  35. /STR.CALL no ..........: To send the string, included in STR <no> (1-10)
  36. ------------------------
  37.  
  38. Example: {/STR.CALL 3}
  39.  
  40.  
  41. /STR.CLR ..............: To clear all string variables (STR 1-10)
  42. ------------------------
  43.  
  44. Example: {/STR.CLR}
  45.  
  46.  
  47. /STR.CLIP.REPLACE no,txt To replace text <txt> in clip by STR <no> (1-10)
  48. ------------------------
  49.  
  50. Example:
  51.  
  52. {/BTCH.EXPLICIT}
  53. {/STR.SET 1,new}
  54. {/STR.CLIP.REPLACE 1,old}
  55.  
  56. Hier werden alle W÷rter "old" in der Zwischenablage durch "new" ersetzt.
  57.  
  58.  
  59. /STR.LOAD [name] ......: To load a variable set (STR 1-10) from disk
  60. /STR.SAVE [name] ......: To save variables STR 1-10 on disk (name = optional)
  61. ------------------------
  62.  
  63. Examples:
  64. {/STR.LOAD}
  65. {/STR.SAVE Tel1}
  66.  
  67. --> Note!
  68. Vermeide die Verwendung von DOS-reservierten Sonderzeichen (\) in <name>, andernfalls
  69. fⁿhrt es zu einer Fehlermeldung.
  70.  
  71.  
  72. /STR.SET no,str .......: To set the string <str> to the variable STR <no> (1-10)
  73. ------------------------
  74.  
  75. Example: {/STR.SET 4,Nice to see you}
  76.  
  77.  
  78. /STR.VIEW .............: To show the contents of variables STR 1-10 in the internal text viewer
  79. ------------------------
  80.  
  81. Example: {/STR.VIEW}
  82.  
  83.  
  84. Example:
  85.  
  86. Button 1: {/STR.SET 1,invoice}
  87. Button 2: {/STR.SET 1,reminder}
  88.  
  89. Button 3: This is a {/STR.CALL 1}
  90.